Song used in guide video: Stephen Campbell - Trance Bass

WHAT IS AUTOBOT?
AutoBot is a Mouse and Keyboard Recorder, that converts that recorded data into code which can then be
modified, compiled, then used to automate a repetitive task.

HOW TO USE AUTOBOT
1. Open up cmd.exe (command prompt) in the folder that holds AutoBot.exe
2. Type AutoBot into the command prompt to start the recorder.
3. Perform your actions
4. Hit the '\' key above the enter button to stop recording.
5. Highlight the written code from "#include <stdio.h>" to the final "}"
6. Right click the top of command prompt
7. Hover over edit button
8. Click copy, or use the HOTKEY enter
9. Paste this code into notepad
	i. OPTIONALLY modify your BotScript here, for example making the script run forever with an infinite loop, or modifying the time inbetween clicks and movements.
10. Save the file as BOTNAME.c
11. Run your C compiler pcc -o BOTNAME.exe BOTNAME.c
12. Type BOTNAME.exe into your command prompt to run the bot

HOW TO INSTALL THE PCC C COMPILER
1. Download Notepad++ https://notepad-plus-plus.org/downloads/v8.4.2/
2. Download C compiler https://web.archive.org/web/20190901000000*/http://pcc.ludd.ltu.se/ftp/pub/win32/
3. Install C compiler
4. Add Portable C Compiler to command prompt environment commands.
	i. Click windows search
	ii. Type "Environment Variables"
	iii. Click "Edit the System Environment Variables"
	iv. Click "Environment Variables"
	v. Click "Path" in the top tab
	vi. Click the first "Edit" button
	vii. Copy the file directory location of C:\Program Files (x86)\pcc\bin
	viii. Click the "New" button
	ix. Paste the file directory location of C:\Program Files (x86)\pcc\bin into the text box
	x. Click "OK"
	xi. Click "OK"
5. Download C Programming Language First Edition book https://archive.org/details/TheCProgrammingLanguageFirstEdition/page/n15/mode/2up
6. Write a hello world program in notepad++
7. Save Hello_World.c program in C:\DirectoryName\Hello_World.c
8. Open cmd prompt in directory C:\DirectoryName\Hello_World.c
9. Compile hello world program with cmd prompt by typing "pcc -o 1.exe Hello_World.c"
10. Make all other programs in the C Programming Language First Edition book